home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / T / TIFF Code Folder / MakeFile < prev    next >
Encoding:
Makefile  |  1987-12-15  |  717 b   |  30 lines  |  [TEXT/MPS ]

  1. #
  2. #    Sample TIFF Program MakeFile
  3. #
  4.  
  5. # DEBUG=            -d DEBUG
  6.  
  7. TLibraries=        ::TiffLibrary:                    # TIFF Library Directory
  8.  
  9. SAMPLEOBJS=        sample.c.o image.c.o dofile.c.o tiffio.c.o ∂
  10.                 tools.c.o
  11.         
  12. LIBS=            "{TLibraries}"TIFFLib.o ∂
  13.                 "{Libraries}"Interface.o ∂
  14.                 "{CLibraries}"CRuntime.o ∂
  15.                 "{CLibraries}"CInterface.o ∂
  16.                 "{CLibraries}"StdCLib.o ∂
  17.                 "{CLibraries}"CSANELib.o
  18.  
  19. sample            ƒƒ    sample.r
  20.     Rez            sample.r -o {Targ} -append
  21.     setFile        -a B sample -c CSMP -t APPL        # set bundle bit
  22.     
  23. sample            ƒƒ    {SAMPLEOBJS} {LIBS} Makefile
  24.     Link        -o {Targ}    {SAMPLEOBJS} {LIBS} ∂
  25. #                -uf Sample.uref -x Sample.cref -l > sample.MPWmap
  26. #    ConvertMap    sample.MPWmap sample.TMONmap
  27.  
  28. .c.o            ƒ    .c
  29.     C            -o {Targ} {DEBUG}    {Default}.c
  30.